https://randomuser.me/.https://randomuser.me/api/?results=50 - Dummy Data for testing API fetch connection 
https://code.visualstudio.com/ - code editor LiveServer https://github.com/ritwickdey/vscode-live-server Node Download 
* download node and npm 
node -v npm -v 
* sudo for admin access on mac 
sudo npm install -g live-server 
* navigate to directory ** type live-server in the directory 
live-server ---- launches in your browser Visual Studio Code 
* Code>Preferences>Extensions ** Type Live Server -Select Live Server Ritwick Day *** Install -right click to open or ctrl+click 
Testing endpoint with Dummy data - multiple pages 
const url = 
'https://script.google.com/macros/s/AKfycbzA9ZdLwhwicQUyoITsJnhheoCaS4xzJSX5WFLnTYPlFiS yrxvynNRJ/exec'; 
Sample Fetch Connection 
const url = 'https://randomuser.me/api/?results=50'; fetch(url) .then(rep => rep.json()) .then(data => {
 data.results.forEach(element => { console.log(element); }); }); 
